home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / mouses.arc / M_VW.MSC < prev    next >
Text File  |  1986-08-28  |  2KB  |  88 lines

  1. ;
  2. ;    Volkswriter Editor Pop-up Menu Configuration
  3. ;
  4. Comment     ("Configured for Volkswriter")
  5.  
  6. ;
  7. ;    Parameters
  8. ;
  9. Sensitivity    (8, 10)     ; (Xinc, Yinc)
  10. Hysteresis    (1, 1)        ; (AutoX, AutoY)
  11. ReverseVideo    (Yes)        ; Menu is displayed in reverse video
  12. FixedMenu    (No)        ; Menu is floating (centered on cursor)
  13. EnableBeep    (No)        ; Allows menu switching rather than beep
  14.  
  15. ;
  16. ;    Cursor Definitions
  17. ;
  18. ArrowKeys: Cursor
  19. (
  20.     Left   ([Left])
  21.     Right  ([Right])
  22.     Up     ([Up])
  23.     Down   ([Down])
  24. )
  25.  
  26. ;
  27. ;    Button Definitions
  28. ;
  29. LB:    Button    (Menu(Edit))        ; Left button, Edit Menu
  30. MB:    Button    (Menu(Motion))        ; Middle button, Motion Menu
  31. RB:    Button    (Menu(File))        ; Right button, File Menu
  32.  
  33.  
  34. ;
  35. ;    Menu Definitions
  36. ;
  37. Edit: Menu
  38. (
  39.     Title    ("Edit")
  40.     Item    ("Delete Word",         Keys([F4]))
  41.     Item    ("Delete Line",         Keys([a-F4]))
  42.     Item    ("Begin Block",         Keys([F5]))
  43.     Item    ("End Block",           Keys([F6]))
  44.     Item    ("Delete Block",        Keys([a-F8]))
  45.     Item    ("Move Block",          Keys([a-F5]))
  46.     Item    ("Copy Block",          Keys([a-F6]))
  47.     Item    ("Insert On/Off",       Keys([Ins]))
  48.     Item    ("Set Tabs & Margins",  Keys([F9]))
  49.     Item    ("Reformat",            Keys([F8]))
  50.     Item    ("Center",              Keys([a-F9]))
  51.     Item    ("Reset",               Keys([F10]))
  52. )
  53.  
  54. Motion: Menu
  55. (
  56.     Title    ("Motion")
  57.     Item    ("Find",                Keys([F7]))
  58.     Item    ("Replace",             Keys([a-F7]))
  59.     Item    ("Screen Up",           Keys([c-PgUp]))
  60.     Item    ("Screen Down",         Keys([c-PgDn]))
  61.     Item    ("Beginning of Text",   Keys([c-Home]))
  62.     Item    ("End of Text",         Keys([c-End]))
  63.     Item    ("Reset",               Keys([F10]))
  64. )
  65.  
  66. File: Menu
  67. (
  68.     Title    ("File")
  69.     Item    ("Write File",          Keys([F2]))
  70.     Item    ("Read File",           Keys([a-F2]))
  71.     Item    ("Print",               Keys([a-F1]))
  72.     Item    ("Help On/Off",         Keys([F1]))
  73.     Item    ("Reset",               Keys([F10]))
  74.     Item    ("Volkswriter Menu",    Keys([a-F10]))
  75. )
  76.  
  77. ;
  78. ;    Mouse Definition
  79. ;
  80. Mouse
  81. (
  82.     Left    (LB)            ; Left Button:     Edit Menu
  83.     Middle    (MB)            ; Middle Button: Motion Menu
  84.     LeftRight(MB)            ; Left Right Chord: Motion Menu
  85.     Right    (RB)            ; Right Button:  File Menu
  86.     Cursor    (ArrowKeys)
  87. )
  88.